dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / Append Method / Append(Byte[],Int32,Int32) Method
The source data buffer.
The zero-based offset in the buffer from which to read the data.
The number of bytes to add.

In This Topic
    Append(Byte[],Int32,Int32) Method
    In This Topic
    Appends the supplied character data to the end current OracleLob instance.
    Syntax
    'Declaration
     
    Public Overloads Sub Append( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    public void Append( 
       byte[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    The source data buffer.
    offset
    The zero-based offset in the buffer from which to read the data.
    count
    The number of bytes to add.
    Remarks

    To write to the OracleLob you must have a local transaction started.

    See Also